
/* Keyboard css start here */
span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .keyboardContainer {
    display: none;
    position: absolute;
    z-index: 999;
    padding: 20px;
    border-radius: 10px;
  }

  .keyboardContainer.pop-up.show {
    display: block;
  }

  #closeButton {
    position: absolute;
    top: 21px;
    right: 33px;
    cursor: pointer;
    color: white;
    font-size: 25px;
  }

  .base {
    border-radius: 10px;
    background: #272b2c;
    display: flex;
    width: auto;
    height: auto;
    flex-direction: column;
    padding: 30px 10px;
      padding-bottom: 10px;
    font: 28px Arial, sans-serif;
    box-shadow: 0px 40px 45px rgba(0, 0, 0, 0.4);
  }

  div[class*="line"] {
    display: flex;
    justify-content: space-around;
  }

  div[class*="line"] + div[class*="line"] {
    margin-top: 15px;
  }

  .line1,
  .line3 {
    padding: 0 15px;
  }

  .line2 {
    padding: 0 15px;
  }

  div[class*="line"] span {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.7);
    color: #71d4fe;
    padding: 15px;
    background: #2f3336;
    border-radius: 12px;
    text-shadow: 0px 0px 40px #71d4fe, 0px 0px 80px #71d4fe;
    width: 50px;
    text-align: center;
  }

  div[class*="line"] span:hover {
    background: #2f3336;
    text-shadow: 1px 2px 60px #00bcd4, 0px 0px 60px rgba(0, 188, 212, 0.9),
      0px 0px 60px rgba(0, 188, 212, 0.9), 10px 10px 60px rgba(0, 188, 212, 0.9);
    cursor: pointer;
  }

  div[class*="line"] span:active {
    transform: scale(0.9);
  }

  .line4 span:nth-child(1) {
    /*width: 55px;*/
  }

  .line4 span:nth-child(2) {
    /*width: 50px;*/
    padding: 10px 15px;
  }

  .line4 span:nth-child(3) {
    /*width: 50px;*/
    padding: 10px 15px;
  }

  .line4 span:nth-child(4) {
    width: 0px;
      display: none;
  }

  .line4 span:last-of-type {
    width: 105px;
  }

  #backspace {
    fill: #71d4fe;
    width: 35px;
    height: 35px;
    -webkit-filter: drop-shadow(0px 2px 20px #71d4fe);
    filter: drop-shadow(0px 2px 20px #71d4fe);
  }

.keybox .base >div{
    justify-content: center;
    gap:10px;
}

  @media only screen and (max-width: 750px) {
    /* .base {
      width: 750px;
    }

    .key {
      padding: 6px;
      font-size: 15px;
    } */
  }

/* Keyboard css End here */
